home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 48 / Amiga Format CD48 (1999-12-13)(Future Publishing)(GB)(Track 1 of 2)[!][issue 2000-01].iso / -in_the_mag- / networking / crosspc / parpc04 / packet / src / skipblk.asm < prev    next >
Assembly Source File  |  1993-04-01  |  204b  |  13 lines

  1. ;put into the public domain by Russell Nelson, nelson@crynwr.com
  2.  
  3.     public    skip_blanks
  4. skip_blanks:
  5.     lodsb                ;skip blanks.
  6.     cmp    al,' '
  7.     je    skip_blanks
  8.     cmp    al,HT
  9.     je    skip_blanks
  10.     dec    si
  11.     ret
  12.  
  13.